home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Enigma Amiga Life 109
/
EnigmaAmiga109CD.iso
/
dalla rivista
/
amiga.free
/
sorgenti vari
/
wolfedit2 2.0.4 source.sit
/
WolfEdit2 2.0.4 Source
/
UScreen.p
< prev
next >
Wrap
Text File
|
1994-12-08
|
222b
|
15 lines
unit UScreen;
interface
function IsSmallScreen: boolean;
implementation
function IsSmallScreen: boolean;
begin
with screenBits.bounds do
IsSmallScreen := (right - left < 640) | (bottom - top < 480);
end;
end.